home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / dev / lang / SlimPython.lha / SlimPython / Objects / SMAKEFILE < prev    next >
Encoding:
Text File  |  1999-10-21  |  1.5 KB  |  53 lines

  1.  
  2. OBJECTS = abstract.o fileobject.o floatobject.o bufferobject.o \
  3.         funcobject.o intobject.o listobject.o \
  4.         dictobject.o methodobject.o moduleobject.o object.o \
  5.         rangeobject.o stringobject.o tupleobject.o typeobject.o \
  6.         classobject.o frameobject.o sliceobject.o cobject.o
  7.  
  8. Objects.lib: $(OBJECTS)
  9.     -delete >NIL: Objects.lib
  10.     oml Objects.lib a <@<
  11. $(OBJECTS)
  12. <
  13.  
  14.  
  15. abstract.o : abstract.c /include/Python.h
  16.  
  17. bufferobject.o: bufferobject.c /include/Python.h
  18.  
  19. classobject.o : classobject.c /include/structmember.h /include/Python.h
  20.  
  21. cobject.o : cobject.c /include/Python.h
  22.  
  23. dictobject.o : dictobject.c /include/Python.h
  24.  
  25. fileobject.o : fileobject.c /include/structmember.h /include/Python.h
  26.  
  27. floatobject.o : floatobject.c /include/mymath.h /include/Python.h
  28.  
  29. frameobject.o : frameobject.c /include/structmember.h /include/opcode.h /include/frameobject.h /include/compile.h /include/Python.h
  30.  
  31. funcobject.o : funcobject.c /include/structmember.h /include/compile.h /include/Python.h
  32.  
  33. intobject.o : intobject.c /include/Python.h
  34.  
  35. listobject.o : listobject.c /include/Python.h
  36.  
  37. methodobject.o : methodobject.c /include/token.h /include/Python.h
  38.  
  39. moduleobject.o : moduleobject.c /include/Python.h
  40.  
  41. object.o : object.c /include/Python.h
  42.  
  43. rangeobject.o : rangeobject.c /include/Python.h
  44.  
  45. sliceobject.o : sliceobject.c /include/Python.h
  46.  
  47. stringobject.o : stringobject.c /include/mymath.h /include/Python.h
  48.  
  49. tupleobject.o : tupleobject.c /include/Python.h
  50.  
  51. typeobject.o : typeobject.c /include/Python.h
  52.  
  53.